home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / tcl / tcl67.lha / tcl6.7 / tclInt.h < prev    next >
C/C++ Source or Header  |  1993-01-22  |  32KB  |  818 lines

  1. /*
  2.  * tclInt.h --
  3.  *
  4.  *    Declarations of things used internally by the Tcl interpreter.
  5.  *
  6.  * Copyright 1987-1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /user6/ouster/tcl/RCS/tclInt.h,v 1.70 93/01/22 15:17:35 ouster Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _TCLINT
  19. #define _TCLINT
  20.  
  21. /*
  22.  * Common include files needed by most of the Tcl source files are
  23.  * included here, so that system-dependent personalizations for the
  24.  * include files only have to be made in once place.  This results
  25.  * in a few extra includes, but greater modularity.  The order of
  26.  * the three groups of #includes is important.  For example, stdio.h
  27.  * is needed by tcl.h, and the _ANSI_ARGS_ declaration in tcl.h is
  28.  * needed by stdlib.h in some configurations.
  29.  */
  30.  
  31. #include <stdio.h>
  32.  
  33. #ifndef _TCL
  34. #include "tcl.h"
  35. #endif
  36. #ifndef _TCLHASH
  37. #include "tclHash.h"
  38. #endif
  39. #ifndef _REGEXP
  40. #include "regexp.h"
  41. #endif
  42.  
  43. #include <ctype.h>
  44. #include <stdlib.h>
  45. #include <string.h>
  46. #include <varargs.h>
  47.  
  48. /*
  49.  * At present (12/91) not all stdlib.h implementations declare strtod.
  50.  * The declaration below is here to ensure that it's declared, so that
  51.  * the compiler won't take the default approach of assuming it returns
  52.  * an int.  There's no ANSI prototype for it because there would end
  53.  * up being too many conflicts with slightly-different prototypes.
  54.  */
  55.  
  56. extern double strtod();
  57.  
  58. /*
  59.  *----------------------------------------------------------------
  60.  * Data structures related to variables.   These are used primarily
  61.  * in tclVar.c
  62.  *----------------------------------------------------------------
  63.  */
  64.  
  65. /*
  66.  * The following structure defines a variable trace, which is used to
  67.  * invoke a specific C procedure whenever certain operations are performed
  68.  * on a variable.
  69.  */
  70.  
  71. typedef struct VarTrace {
  72.     Tcl_VarTraceProc *traceProc;/* Procedure to call when operations given
  73.                  * by flags are performed on variable. */
  74.     ClientData clientData;    /* Argument to pass to proc. */
  75.     int flags;            /* What events the trace procedure is
  76.                  * interested in:  OR-ed combination of
  77.                  * TCL_TRACE_READS, TCL_TRACE_WRITES, and
  78.                  * TCL_TRACE_UNSETS. */
  79.     struct VarTrace *nextPtr;    /* Next in list of traces associated with
  80.                  * a particular variable. */
  81. } VarTrace;
  82.  
  83. /*
  84.  * When a variable trace is active (i.e. its associated procedure is
  85.  * executing), one of the following structures is linked into a list
  86.  * associated with the variable's interpreter.  The information in
  87.  * the structure is needed in order for Tcl to behave reasonably
  88.  * if traces are deleted while traces are active.
  89.  */
  90.  
  91. typedef struct ActiveVarTrace {
  92.     struct ActiveVarTrace *nextPtr;
  93.                 /* Next in list of all active variable
  94.                  * traces for the interpreter, or NULL
  95.                  * if no more. */
  96.     VarTrace *nextTracePtr;    /* Next trace to check after current
  97.                  * trace procedure returns;  if this
  98.                  * trace gets deleted, must update pointer
  99.                  * to avoid using free'd memory. */
  100. } ActiveVarTrace;
  101.  
  102. /*
  103.  * The following structure describes an enumerative search in progress on
  104.  * an array variable;  this are invoked with options to the "array"
  105.  * command.
  106.  */
  107.  
  108. typedef struct ArraySearch {
  109.     int id;            /* Integer id used to distinguish among
  110.                  * multiple concurrent searches for the
  111.                  * same array. */
  112.     struct Var *varPtr;        /* Pointer to array variable that's being
  113.                  * searched. */
  114.     Tcl_HashSearch search;    /* Info kept by the hash module about
  115.                  * progress through the array. */
  116.     Tcl_HashEntry *nextEntry;    /* Non-null means this is the next element
  117.                  * to be enumerated (it's leftover from
  118.                  * the Tcl_FirstHashEntry call or from
  119.                  * an "array anymore" command).  NULL
  120.                  * means must call Tcl_NextHashEntry
  121.                  * to get value to return. */
  122.     struct ArraySearch *nextPtr;/* Next in list of all active searches
  123.                  * for this variable, or NULL if this is
  124.                  * the last one. */
  125. } ArraySearch;
  126.  
  127. /*
  128.  * The structure below defines a variable, which associates a string name
  129.  * with a string value.  Pointers to these structures are kept as the
  130.  * values of hash table entries, and the name of each variable is stored
  131.  * in the hash entry.
  132.  */
  133.  
  134. typedef struct Var {
  135.     int valueLength;        /* Holds the number of non-null bytes
  136.                  * actually occupied by the variable's
  137.                  * current value in value.string (extra
  138.                  * space is sometimes left for expansion).
  139.                  * For array and global variables this is
  140.                  * meaningless. */
  141.     int valueSpace;        /* Total number of bytes of space allocated
  142.                  * at value. */
  143.     int upvarUses;        /* Counts number of times variable is
  144.                  * is referenced via global or upvar variables
  145.                  * (i.e. how many variables have "upvarPtr"
  146.                  * pointing to this variable).  Variable
  147.                  * can't be deleted until this count reaches
  148.                  * 0. */
  149.     VarTrace *tracePtr;        /* First in list of all traces set for this
  150.                  * variable. */
  151.     ArraySearch *searchPtr;    /* First in list of all searches active
  152.                  * for this variable, or NULL if none. */
  153.     int flags;            /* Miscellaneous bits of information about
  154.                  * variable.  See below for definitions. */
  155.     union {
  156.     char string[4];        /* String value of variable.  The actual
  157.                  * length of this field is given by the
  158.                  * valueSpace field above. */
  159.     Tcl_HashTable *tablePtr;/* For array variables, this points to
  160.                  * information about the hash table used
  161.                  * to implement the associative array. 
  162.                  * Points to malloc-ed data. */
  163.     Tcl_HashEntry *upvarPtr;
  164.                 /* If this is a global variable being
  165.                  * referred to in a procedure, or a variable
  166.                  * created by "upvar", this field points to
  167.                  * the hash table entry for the higher-level
  168.                  * variable. */
  169.     } value;            /* MUST BE LAST FIELD IN STRUCTURE!!! */
  170. } Var;
  171.  
  172. /*
  173.  * Flag bits for variables:
  174.  *
  175.  * VAR_ARRAY    -        1 means this is an array variable rather
  176.  *                than a scalar variable.
  177.  * VAR_UPVAR -             1 means this variable just contains a
  178.  *                pointer to another variable that has the
  179.  *                real value.  Variables like this come
  180.  *                about through the "upvar" and "global"
  181.  *                commands.
  182.  * VAR_UNDEFINED -        1 means that the variable is currently
  183.  *                undefined.  Undefined variables usually
  184.  *                go away completely, but if an undefined
  185.  *                variable has a trace on it, or if it is
  186.  *                a global variable being used by a procedure,
  187.  *                then it stays around even when undefined.
  188.  * VAR_ELEMENT_ACTIVE -        Used only in array variables;  1 means that
  189.  *                an element of the array is currently being
  190.  *                manipulated in some way, so that it isn't
  191.  *                safe to delete the whole array.
  192.  * VAR_TRACE_ACTIVE -        1 means that trace processing is currently
  193.  *                underway for a read or write access, so
  194.  *                new read or write accesses should not cause
  195.  *                trace procedures to be called and the
  196.  *                variable can't be deleted.
  197.  */
  198.  
  199. #define VAR_ARRAY        1
  200. #define VAR_UPVAR        2
  201. #define VAR_UNDEFINED        4
  202. #define VAR_ELEMENT_ACTIVE    0x10
  203. #define VAR_TRACE_ACTIVE    0x20
  204. #define VAR_SEARCHES_POSSIBLE    0x40
  205.  
  206. /*
  207.  *----------------------------------------------------------------
  208.  * Data structures related to procedures.   These are used primarily
  209.  * in tclProc.c
  210.  *----------------------------------------------------------------
  211.  */
  212.  
  213. /*
  214.  * The structure below defines an argument to a procedure, which
  215.  * consists of a name and an (optional) default value.
  216.  */
  217.  
  218. typedef struct Arg {
  219.     struct Arg *nextPtr;    /* Next argument for this procedure,
  220.                  * or NULL if this is the last argument. */
  221.     char *defValue;        /* Pointer to arg's default value, or NULL
  222.                  * if no default value. */
  223.     char name[4];        /* Name of argument starts here.  The name
  224.                  * is followed by space for the default,
  225.                  * if there is one.  The actual size of this
  226.                  * field will be as large as necessary to
  227.                  * hold both name and default value.  THIS
  228.                  * MUST BE THE LAST FIELD IN THE STRUCTURE!! */
  229. } Arg;
  230.  
  231. /*
  232.  * The structure below defines a command procedure, which consists of
  233.  * a collection of Tcl commands plus information about arguments and
  234.  * variables.
  235.  */
  236.  
  237. typedef struct Proc {
  238.     struct Interp *iPtr;    /* Interpreter for which this command
  239.                  * is defined. */
  240.     char *command;        /* Command that constitutes the body of
  241.                  * the procedure (dynamically allocated). */
  242.     Arg *argPtr;        /* Pointer to first of procedure's formal
  243.                  * arguments, or NULL if none. */
  244. } Proc;
  245.  
  246. /*
  247.  * The structure below defines a command trace.  This is used to allow Tcl
  248.  * clients to find out whenever a command is about to be executed.
  249.  */
  250.  
  251. typedef struct Trace {
  252.     int level;            /* Only trace commands at nesting level
  253.                  * less than or equal to this. */
  254.     Tcl_CmdTraceProc *proc;    /* Procedure to call to trace command. */
  255.     ClientData clientData;    /* Arbitrary value to pass to proc. */
  256.     struct Trace *nextPtr;    /* Next in list of traces for this interp. */
  257. } Trace;
  258.  
  259. /*
  260.  * The structure below defines a frame, which is a procedure invocation.
  261.  * These structures exist only while procedures are being executed, and
  262.  * provide a sort of call stack.
  263.  */
  264.  
  265. typedef struct CallFrame {
  266.     Tcl_HashTable varTable;    /* Hash table containing all of procedure's
  267.                  * local variables. */
  268.     int level;            /* Level of this procedure, for "uplevel"
  269.                  * purposes (i.e. corresponds to nesting of
  270.                  * callerVarPtr's, not callerPtr's).  1 means
  271.                  * outer-most procedure, 0 means top-level. */
  272.     int argc;            /* This and argv below describe name and
  273.                  * arguments for this procedure invocation. */
  274.     char **argv;        /* Array of arguments. */
  275.     struct CallFrame *callerPtr;
  276.                 /* Value of interp->framePtr when this
  277.                  * procedure was invoked (i.e. next in
  278.                  * stack of all active procedures). */
  279.     struct CallFrame *callerVarPtr;
  280.                 /* Value of interp->varFramePtr when this
  281.                  * procedure was invoked (i.e. determines
  282.                  * variable scoping within caller;  same
  283.                  * as callerPtr unless an "uplevel" command
  284.                  * or something equivalent was active in
  285.                  * the caller). */
  286. } CallFrame;
  287.  
  288. /*
  289.  * The structure below defines one history event (a previously-executed
  290.  * command that can be re-executed in whole or in part).
  291.  */
  292.  
  293. typedef struct {
  294.     char *command;        /* String containing previously-executed
  295.                  * command. */
  296.     int bytesAvl;        /* Total # of bytes available at *event (not
  297.                  * all are necessarily in use now). */
  298. } HistoryEvent;
  299.  
  300. /*
  301.  *----------------------------------------------------------------
  302.  * Data structures related to history.   These are used primarily
  303.  * in tclHistory.c
  304.  *----------------------------------------------------------------
  305.  */
  306.  
  307. /*
  308.  * The structure below defines a pending revision to the most recent
  309.  * history event.  Changes are linked together into a list and applied
  310.  * during the next call to Tcl_RecordHistory.  See the comments at the
  311.  * beginning of tclHistory.c for information on revisions.
  312.  */
  313.  
  314. typedef struct HistoryRev {
  315.     int firstIndex;        /* Index of the first byte to replace in
  316.                  * current history event. */
  317.     int lastIndex;        /* Index of last byte to replace in
  318.                  * current history event. */
  319.     int newSize;        /* Number of bytes in newBytes. */
  320.     char *newBytes;        /* Replacement for the range given by
  321.                  * firstIndex and lastIndex. */
  322.     struct HistoryRev *nextPtr;    /* Next in chain of revisions to apply, or
  323.                  * NULL for end of list. */
  324. } HistoryRev;
  325.  
  326. /*
  327.  *----------------------------------------------------------------
  328.  * Data structures related to files.  These are used primarily in
  329.  * tclUnixUtil.c and tclUnixAZ.c.
  330.  *----------------------------------------------------------------
  331.  */
  332.  
  333. /*
  334.  * The data structure below defines an open file (or connection to
  335.  * a process pipeline) as returned by the "open" command.
  336.  */
  337.  
  338. typedef struct OpenFile {
  339.     FILE *f;            /* Stdio file to use for reading and/or
  340.                  * writing. */
  341.     FILE *f2;            /* Normally NULL.  In the special case of
  342.                  * a command pipeline with pipes for both
  343.                  * input and output, this is a stdio file
  344.                  * to use for writing to the pipeline. */
  345.     int readable;        /* Non-zero means file may be read. */
  346.     int writable;        /* Non-zero means file may be written. */
  347.     int numPids;        /* If this is a connection to a process
  348.                  * pipeline, gives number of processes
  349.                  * in pidPtr array below;  otherwise it
  350.                  * is 0. */
  351.     int *pidPtr;        /* Pointer to malloc-ed array of child
  352.                  * process ids (numPids of them), or NULL
  353.                  * if this isn't a connection to a process
  354.                  * pipeline. */
  355.     int errorId;        /* File id of file that receives error
  356.                  * output from pipeline.  -1 means not
  357.                  * used (i.e. this is a normal file). */
  358. } OpenFile;
  359.  
  360. /*
  361.  *----------------------------------------------------------------
  362.  * This structure defines an interpreter, which is a collection of
  363.  * commands plus other state information related to interpreting
  364.  * commands, such as variable storage.  Primary responsibility for
  365.  * this data structure is in tclBasic.c, but almost every Tcl
  366.  * source file uses something in here.
  367.  *----------------------------------------------------------------
  368.  */
  369.  
  370. typedef struct Command {
  371.     Tcl_CmdProc *proc;        /* Procedure to process command. */
  372.     ClientData clientData;    /* Arbitrary value to pass to proc. */
  373.     Tcl_CmdDeleteProc *deleteProc;
  374.                 /* Procedure to invoke when deleting
  375.                  * command. */
  376. } Command;
  377.  
  378. #define CMD_SIZE(nameLength) ((unsigned) sizeof(Command) + nameLength - 3)
  379.  
  380. typedef struct Interp {
  381.  
  382.     /*
  383.      * Note:  the first three fields must match exactly the fields in
  384.      * a Tcl_Interp struct (see tcl.h).  If you change one, be sure to
  385.      * change the other.
  386.      */
  387.  
  388.     char *result;        /* Points to result returned by last
  389.                  * command. */
  390.     Tcl_FreeProc *freeProc;    /* Zero means result is statically allocated.
  391.                  * If non-zero, gives address of procedure
  392.                  * to invoke to free the result.  Must be
  393.                  * freed by Tcl_Eval before executing next
  394.                  * command. */
  395.     int errorLine;        /* When TCL_ERROR is returned, this gives
  396.                  * the line number within the command where
  397.                  * the error occurred (1 means first line). */
  398.     Tcl_HashTable commandTable;    /* Contains all of the commands currently
  399.                  * registered in this interpreter.  Indexed
  400.                  * by strings; values have type (Command *). */
  401.  
  402.     /*
  403.      * Information related to procedures and variables.  See tclProc.c
  404.      * and tclvar.c for usage.
  405.      */
  406.  
  407.     Tcl_HashTable globalTable;    /* Contains all global variables for
  408.                  * interpreter. */
  409.     int numLevels;        /* Keeps track of how many nested calls to
  410.                  * Tcl_Eval are in progress for this
  411.                  * interpreter.  It's used to delay deletion
  412.                  * of the table until all Tcl_Eval invocations
  413.                  * are completed. */
  414.     CallFrame *framePtr;    /* Points to top-most in stack of all nested
  415.                  * procedure invocations.  NULL means there
  416.                  * are no active procedures. */
  417.     CallFrame *varFramePtr;    /* Points to the call frame whose variables
  418.                  * are currently in use (same as framePtr
  419.                  * unless an "uplevel" command is being
  420.                  * executed).  NULL means no procedure is
  421.                  * active or "uplevel 0" is being exec'ed. */
  422.     ActiveVarTrace *activeTracePtr;
  423.                 /* First in list of active traces for interp,
  424.                  * or NULL if no active traces. */
  425.  
  426.     /*
  427.      * Information related to history:
  428.      */
  429.  
  430.     int numEvents;        /* Number of previously-executed commands
  431.                  * to retain. */
  432.     HistoryEvent *events;    /* Array containing numEvents entries
  433.                  * (dynamically allocated). */
  434.     int curEvent;        /* Index into events of place where current
  435.                  * (or most recent) command is recorded. */
  436.     int curEventNum;        /* Event number associated with the slot
  437.                  * given by curEvent. */
  438.     HistoryRev *revPtr;        /* First in list of pending revisions. */
  439.     char *historyFirst;        /* First char. of current command executed
  440.                  * from history module or NULL if none. */
  441.     int revDisables;        /* 0 means history revision OK;  > 0 gives
  442.                  * a count of number of times revision has
  443.                  * been disabled. */
  444.     char *evalFirst;        /* If TCL_RECORD_BOUNDS flag set, Tcl_Eval
  445.                  * sets this field to point to the first
  446.                  * char. of text from which the current
  447.                  * command came.  Otherwise Tcl_Eval sets
  448.                  * this to NULL. */
  449.     char *evalLast;        /* Similar to evalFirst, except points to
  450.                  * last character of current command. */
  451.  
  452.     /*
  453.      * Information used by Tcl_AppendResult to keep track of partial
  454.      * results.  See Tcl_AppendResult code for details.
  455.      */
  456.  
  457.     char *appendResult;        /* Storage space for results generated
  458.                  * by Tcl_AppendResult.  Malloc-ed.  NULL
  459.                  * means not yet allocated. */
  460.     int appendAvl;        /* Total amount of space available at
  461.                  * partialResult. */
  462.     int appendUsed;        /* Number of non-null bytes currently
  463.                  * stored at partialResult. */
  464.  
  465.     /*
  466.      * Information related to files.  See tclUnixAZ.c and tclUnixUtil.c
  467.      * for details.
  468.      */
  469.  
  470.     int numFiles;        /* Number of entries in filePtrArray
  471.                  * below.  0 means array hasn't been
  472.                  * created yet. */
  473.     OpenFile **filePtrArray;    /* Pointer to malloc-ed array of pointers
  474.                  * to information about open files.  Entry
  475.                  * N corresponds to the file with fileno N.
  476.                  * If an entry is NULL then the corresponding
  477.                  * file isn't open.  If filePtrArray is NULL
  478.                  * it means no files have been used, so even
  479.                  * stdin/stdout/stderr entries haven't been
  480.                  * setup yet. */
  481.     /*
  482.      * A cache of compiled regular expressions.  See TclCompileRegexp
  483.      * in tclUtil.c for details.
  484.      */
  485.  
  486. #define NUM_REGEXPS 5
  487.     char *patterns[NUM_REGEXPS];/* Strings corresponding to compiled
  488.                  * regular expression patterns.  NULL
  489.                  * means that this slot isn't used.
  490.                  * Malloc-ed. */
  491.     int patLengths[NUM_REGEXPS];/* Number of non-null characters in
  492.                  * corresponding entry in patterns.
  493.                  * -1 means entry isn't used. */
  494.     regexp *regexps[NUM_REGEXPS];
  495.                 /* Compiled forms of above strings.  Also
  496.                  * malloc-ed, or NULL if not in use yet. */
  497.  
  498.  
  499.     /*
  500.      * Miscellaneous information:
  501.      */
  502.  
  503.     int cmdCount;        /* Total number of times a command procedure
  504.                  * has been called for this interpreter. */
  505.     int noEval;            /* Non-zero means no commands should actually
  506.                  * be executed:  just parse only.  Used in
  507.                  * expressions when the result is already
  508.                  * determined. */
  509.     char *scriptFile;        /* NULL means there is no nested source
  510.                  * command active;  otherwise this points to
  511.                  * the name of the file being sourced (it's
  512.                  * not malloc-ed:  it points to an argument
  513.                  * to Tcl_EvalFile. */
  514.     int flags;            /* Various flag bits.  See below. */
  515.     Trace *tracePtr;        /* List of traces for this interpreter. */
  516.     char resultSpace[TCL_RESULT_SIZE+1];
  517.                 /* Static space for storing small results. */
  518. } Interp;
  519.  
  520. /*
  521.  * Flag bits for Interp structures:
  522.  *
  523.  * DELETED:        Non-zero means the interpreter has been deleted:
  524.  *            don't process any more commands for it, and destroy
  525.  *            the structure as soon as all nested invocations of
  526.  *            Tcl_Eval are done.
  527.  * ERR_IN_PROGRESS:    Non-zero means an error unwind is already in progress.
  528.  *            Zero means a command proc has been invoked since last
  529.  *            error occured.
  530.  * ERR_ALREADY_LOGGED:    Non-zero means information has already been logged
  531.  *            in $errorInfo for the current Tcl_Eval instance,
  532.  *            so Tcl_Eval needn't log it (used to implement the
  533.  *            "error message log" command).
  534.  * ERROR_CODE_SET:    Non-zero means that Tcl_SetErrorCode has been
  535.  *            called to record information for the current
  536.  *            error.  Zero means Tcl_Eval must clear the
  537.  *            errorCode variable if an error is returned.
  538.  */
  539.  
  540. #define DELETED            1
  541. #define ERR_IN_PROGRESS        2
  542. #define ERR_ALREADY_LOGGED    4
  543. #define ERROR_CODE_SET        8
  544.  
  545. /*
  546.  *----------------------------------------------------------------
  547.  * Data structures related to command parsing.   These are used in
  548.  * tclParse.c and its clients.
  549.  *----------------------------------------------------------------
  550.  */
  551.  
  552. /*
  553.  * The following data structure is used by various parsing procedures
  554.  * to hold information about where to store the results of parsing
  555.  * (e.g. the substituted contents of a quoted argument, or the result
  556.  * of a nested command).  At any given time, the space available
  557.  * for output is fixed, but a procedure may be called to expand the
  558.  * space available if the current space runs out.
  559.  */
  560.  
  561. typedef struct ParseValue {
  562.     char *buffer;        /* Address of first character in
  563.                  * output buffer. */
  564.     char *next;            /* Place to store next character in
  565.                  * output buffer. */
  566.     char *end;            /* Address of the last usable character
  567.                  * in the buffer. */
  568.     void (*expandProc) _ANSI_ARGS_((struct ParseValue *pvPtr, int needed));
  569.                 /* Procedure to call when space runs out;
  570.                  * it will make more space. */
  571.     ClientData clientData;    /* Arbitrary information for use of
  572.                  * expandProc. */
  573. } ParseValue;
  574.  
  575. /*
  576.  * A table used to classify input characters to assist in parsing
  577.  * Tcl commands.  The table should be indexed with a signed character
  578.  * using the CHAR_TYPE macro.  The character may have a negative
  579.  * value.
  580.  */
  581.  
  582. extern char tclTypeTable[];
  583. #define CHAR_TYPE(c) (tclTypeTable+128)[c]
  584.  
  585. /*
  586.  * Possible values returned by CHAR_TYPE:
  587.  *
  588.  * TCL_NORMAL -        All characters that don't have special significance
  589.  *            to the Tcl language.
  590.  * TCL_SPACE -        Character is space, tab, or return.
  591.  * TCL_COMMAND_END -    Character is newline or null or semicolon or
  592.  *            close-bracket.
  593.  * TCL_QUOTE -        Character is a double-quote.
  594.  * TCL_OPEN_BRACKET -    Character is a "[".
  595.  * TCL_OPEN_BRACE -    Character is a "{".
  596.  * TCL_CLOSE_BRACE -    Character is a "}".
  597.  * TCL_BACKSLASH -    Character is a "\".
  598.  * TCL_DOLLAR -        Character is a "$".
  599.  */
  600.  
  601. #define TCL_NORMAL        0
  602. #define TCL_SPACE        1
  603. #define TCL_COMMAND_END        2
  604. #define TCL_QUOTE        3
  605. #define TCL_OPEN_BRACKET    4
  606. #define TCL_OPEN_BRACE        5
  607. #define TCL_CLOSE_BRACE        6
  608. #define TCL_BACKSLASH        7
  609. #define TCL_DOLLAR        8
  610.  
  611. /*
  612.  * Additional flags passed to Tcl_Eval.  See tcl.h for other flags to
  613.  * Tcl_Eval;  these ones are only used internally by Tcl.
  614.  *
  615.  * TCL_RECORD_BOUNDS    Tells Tcl_Eval to record information in the
  616.  *            evalFirst and evalLast fields for each command
  617.  *            executed directly from the string (top-level
  618.  *            commands and those from command substitution).
  619.  */
  620.  
  621. #define TCL_RECORD_BOUNDS    0x100
  622.  
  623. /*
  624.  * Maximum number of levels of nesting permitted in Tcl commands.
  625.  */
  626.  
  627. #define MAX_NESTING_DEPTH    100
  628.  
  629. /*
  630.  * Variables shared among Tcl modules but not used by the outside
  631.  * world:
  632.  */
  633.  
  634. extern char *        tclRegexpError;
  635.  
  636. /*
  637.  *----------------------------------------------------------------
  638.  * Procedures shared among Tcl modules but not used by the outside
  639.  * world:
  640.  *----------------------------------------------------------------
  641.  */
  642.  
  643. extern void        panic();
  644. extern regexp *        TclCompileRegexp _ANSI_ARGS_((Tcl_Interp *interp,
  645.                 char *string));
  646. extern void        TclCopyAndCollapse _ANSI_ARGS_((int count, char *src,
  647.                 char *dst));
  648. extern void        TclDeleteVars _ANSI_ARGS_((Interp *iPtr,
  649.                 Tcl_HashTable *tablePtr));
  650. extern void        TclExpandParseValue _ANSI_ARGS_((ParseValue *pvPtr,
  651.                 int needed));
  652. extern int        TclFindElement _ANSI_ARGS_((Tcl_Interp *interp,
  653.                 char *list, char **elementPtr, char **nextPtr,
  654.                 int *sizePtr, int *bracePtr));
  655. extern Proc *        TclFindProc _ANSI_ARGS_((Interp *iPtr,
  656.                 char *procName));
  657. extern int        TclGetFrame _ANSI_ARGS_((Tcl_Interp *interp,
  658.                 char *string, CallFrame **framePtrPtr));
  659. extern int        TclGetListIndex _ANSI_ARGS_((Tcl_Interp *interp,
  660.                 char *string, int *indexPtr));
  661. extern int        TclGetOpenFile _ANSI_ARGS_((Tcl_Interp *interp,
  662.                 char *string, OpenFile **filePtrPtr));
  663. extern Proc *        TclIsProc _ANSI_ARGS_((Command *cmdPtr));
  664. extern void        TclMakeFileTable _ANSI_ARGS_((Interp *iPtr,
  665.                 int index));
  666. extern int        TclParseBraces _ANSI_ARGS_((Tcl_Interp *interp,
  667.                 char *string, char **termPtr, ParseValue *pvPtr));
  668. extern int        TclParseNestedCmd _ANSI_ARGS_((Tcl_Interp *interp,
  669.                 char *string, int flags, char **termPtr,
  670.                 ParseValue *pvPtr));
  671. extern int        TclParseQuotes _ANSI_ARGS_((Tcl_Interp *interp,
  672.                 char *string, int termChar, int flags,
  673.                 char **termPtr, ParseValue *pvPtr));
  674. extern int        TclParseWords _ANSI_ARGS_((Tcl_Interp *interp,
  675.                 char *string, int flags, int maxWords,
  676.                 char **termPtr, int *argcPtr, char **argv,
  677.                 ParseValue *pvPtr));
  678. extern void        TclSetupEnv _ANSI_ARGS_((Tcl_Interp *interp));
  679. extern char *        TclWordEnd _ANSI_ARGS_((char *start, int nested));
  680.  
  681. /*
  682.  *----------------------------------------------------------------
  683.  * Command procedures in the generic core:
  684.  *----------------------------------------------------------------
  685.  */
  686.  
  687. extern int    Tcl_AppendCmd _ANSI_ARGS_((ClientData clientData,
  688.             Tcl_Interp *interp, int argc, char **argv));
  689. extern int    Tcl_ArrayCmd _ANSI_ARGS_((ClientData clientData,
  690.             Tcl_Interp *interp, int argc, char **argv));
  691. extern int    Tcl_BreakCmd _ANSI_ARGS_((ClientData clientData,
  692.             Tcl_Interp *interp, int argc, char **argv));
  693. extern int    Tcl_CaseCmd _ANSI_ARGS_((ClientData clientData,
  694.             Tcl_Interp *interp, int argc, char **argv));
  695. extern int    Tcl_CatchCmd _ANSI_ARGS_((ClientData clientData,
  696.             Tcl_Interp *interp, int argc, char **argv));
  697. extern int    Tcl_ConcatCmd _ANSI_ARGS_((ClientData clientData,
  698.             Tcl_Interp *interp, int argc, char **argv));
  699. extern int    Tcl_ContinueCmd _ANSI_ARGS_((ClientData clientData,
  700.             Tcl_Interp *interp, int argc, char **argv));
  701. extern int    Tcl_ErrorCmd _ANSI_ARGS_((ClientData clientData,
  702.             Tcl_Interp *interp, int argc, char **argv));
  703. extern int    Tcl_EvalCmd _ANSI_ARGS_((ClientData clientData,
  704.             Tcl_Interp *interp, int argc, char **argv));
  705. extern int    Tcl_ExprCmd _ANSI_ARGS_((ClientData clientData,
  706.             Tcl_Interp *interp, int argc, char **argv));
  707. extern int    Tcl_ForCmd _ANSI_ARGS_((ClientData clientData,
  708.             Tcl_Interp *interp, int argc, char **argv));
  709. extern int    Tcl_ForeachCmd _ANSI_ARGS_((ClientData clientData,
  710.             Tcl_Interp *interp, int argc, char **argv));
  711. extern int    Tcl_FormatCmd _ANSI_ARGS_((ClientData clientData,
  712.             Tcl_Interp *interp, int argc, char **argv));
  713. extern int    Tcl_GlobalCmd _ANSI_ARGS_((ClientData clientData,
  714.             Tcl_Interp *interp, int argc, char **argv));
  715. extern int    Tcl_HistoryCmd _ANSI_ARGS_((ClientData clientData,
  716.             Tcl_Interp *interp, int argc, char **argv));
  717. extern int    Tcl_IfCmd _ANSI_ARGS_((ClientData clientData,
  718.             Tcl_Interp *interp, int argc, char **argv));
  719. extern int    Tcl_IncrCmd _ANSI_ARGS_((ClientData clientData,
  720.             Tcl_Interp *interp, int argc, char **argv));
  721. extern int    Tcl_InfoCmd _ANSI_ARGS_((ClientData clientData,
  722.             Tcl_Interp *interp, int argc, char **argv));
  723. extern int    Tcl_JoinCmd _ANSI_ARGS_((ClientData clientData,
  724.             Tcl_Interp *interp, int argc, char **argv));
  725. extern int    Tcl_LappendCmd _ANSI_ARGS_((ClientData clientData,
  726.             Tcl_Interp *interp, int argc, char **argv));
  727. extern int    Tcl_LindexCmd _ANSI_ARGS_((ClientData clientData,
  728.             Tcl_Interp *interp, int argc, char **argv));
  729. extern int    Tcl_LinsertCmd _ANSI_ARGS_((ClientData clientData,
  730.             Tcl_Interp *interp, int argc, char **argv));
  731. extern int    Tcl_LlengthCmd _ANSI_ARGS_((ClientData clientData,
  732.             Tcl_Interp *interp, int argc, char **argv));
  733. extern int    Tcl_ListCmd _ANSI_ARGS_((ClientData clientData,
  734.             Tcl_Interp *interp, int argc, char **argv));
  735. extern int    Tcl_LrangeCmd _ANSI_ARGS_((ClientData clientData,
  736.             Tcl_Interp *interp, int argc, char **argv));
  737. extern int    Tcl_LreplaceCmd _ANSI_ARGS_((ClientData clientData,
  738.             Tcl_Interp *interp, int argc, char **argv));
  739. extern int    Tcl_LsearchCmd _ANSI_ARGS_((ClientData clientData,
  740.             Tcl_Interp *interp, int argc, char **argv));
  741. extern int    Tcl_LsortCmd _ANSI_ARGS_((ClientData clientData,
  742.             Tcl_Interp *interp, int argc, char **argv));
  743. extern int    Tcl_ProcCmd _ANSI_ARGS_((ClientData clientData,
  744.             Tcl_Interp *interp, int argc, char **argv));
  745. extern int    Tcl_RegexpCmd _ANSI_ARGS_((ClientData clientData,
  746.             Tcl_Interp *interp, int argc, char **argv));
  747. extern int    Tcl_RegsubCmd _ANSI_ARGS_((ClientData clientData,
  748.             Tcl_Interp *interp, int argc, char **argv));
  749. extern int    Tcl_RenameCmd _ANSI_ARGS_((ClientData clientData,
  750.             Tcl_Interp *interp, int argc, char **argv));
  751. extern int    Tcl_ReturnCmd _ANSI_ARGS_((ClientData clientData,
  752.             Tcl_Interp *interp, int argc, char **argv));
  753. extern int    Tcl_ScanCmd _ANSI_ARGS_((ClientData clientData,
  754.             Tcl_Interp *interp, int argc, char **argv));
  755. extern int    Tcl_SetCmd _ANSI_ARGS_((ClientData clientData,
  756.             Tcl_Interp *interp, int argc, char **argv));
  757. extern int    Tcl_SplitCmd _ANSI_ARGS_((ClientData clientData,
  758.             Tcl_Interp *interp, int argc, char **argv));
  759. extern int    Tcl_StringCmd _ANSI_ARGS_((ClientData clientData,
  760.             Tcl_Interp *interp, int argc, char **argv));
  761. extern int    Tcl_TraceCmd _ANSI_ARGS_((ClientData clientData,
  762.             Tcl_Interp *interp, int argc, char **argv));
  763. extern int    Tcl_UnsetCmd _ANSI_ARGS_((ClientData clientData,
  764.             Tcl_Interp *interp, int argc, char **argv));
  765. extern int    Tcl_UplevelCmd _ANSI_ARGS_((ClientData clientData,
  766.             Tcl_Interp *interp, int argc, char **argv));
  767. extern int    Tcl_UpvarCmd _ANSI_ARGS_((ClientData clientData,
  768.             Tcl_Interp *interp, int argc, char **argv));
  769. extern int    Tcl_WhileCmd _ANSI_ARGS_((ClientData clientData,
  770.             Tcl_Interp *interp, int argc, char **argv));
  771. extern int    Tcl_Cmd _ANSI_ARGS_((ClientData clientData,
  772.             Tcl_Interp *interp, int argc, char **argv));
  773. extern int    Tcl_Cmd _ANSI_ARGS_((ClientData clientData,
  774.             Tcl_Interp *interp, int argc, char **argv));
  775.  
  776. /*
  777.  *----------------------------------------------------------------
  778.  * Command procedures in the UNIX core:
  779.  *----------------------------------------------------------------
  780.  */
  781.  
  782. extern int    Tcl_CdCmd _ANSI_ARGS_((ClientData clientData,
  783.             Tcl_Interp *interp, int argc, char **argv));
  784. extern int    Tcl_CloseCmd _ANSI_ARGS_((ClientData clientData,
  785.             Tcl_Interp *interp, int argc, char **argv));
  786. extern int    Tcl_EofCmd _ANSI_ARGS_((ClientData clientData,
  787.             Tcl_Interp *interp, int argc, char **argv));
  788. extern int    Tcl_ExecCmd _ANSI_ARGS_((ClientData clientData,
  789.             Tcl_Interp *interp, int argc, char **argv));
  790. extern int    Tcl_ExitCmd _ANSI_ARGS_((ClientData clientData,
  791.             Tcl_Interp *interp, int argc, char **argv));
  792. extern int    Tcl_FileCmd _ANSI_ARGS_((ClientData clientData,
  793.             Tcl_Interp *interp, int argc, char **argv));
  794. extern int    Tcl_FlushCmd _ANSI_ARGS_((ClientData clientData,
  795.             Tcl_Interp *interp, int argc, char **argv));
  796. extern int    Tcl_GetsCmd _ANSI_ARGS_((ClientData clientData,
  797.             Tcl_Interp *interp, int argc, char **argv));
  798. extern int    Tcl_GlobCmd _ANSI_ARGS_((ClientData clientData,
  799.             Tcl_Interp *interp, int argc, char **argv));
  800. extern int    Tcl_OpenCmd _ANSI_ARGS_((ClientData clientData,
  801.             Tcl_Interp *interp, int argc, char **argv));
  802. extern int    Tcl_PutsCmd _ANSI_ARGS_((ClientData clientData,
  803.             Tcl_Interp *interp, int argc, char **argv));
  804. extern int    Tcl_PwdCmd _ANSI_ARGS_((ClientData clientData,
  805.             Tcl_Interp *interp, int argc, char **argv));
  806. extern int    Tcl_ReadCmd _ANSI_ARGS_((ClientData clientData,
  807.             Tcl_Interp *interp, int argc, char **argv));
  808. extern int    Tcl_SeekCmd _ANSI_ARGS_((ClientData clientData,
  809.             Tcl_Interp *interp, int argc, char **argv));
  810. extern int    Tcl_SourceCmd _ANSI_ARGS_((ClientData clientData,
  811.             Tcl_Interp *interp, int argc, char **argv));
  812. extern int    Tcl_TellCmd _ANSI_ARGS_((ClientData clientData,
  813.             Tcl_Interp *interp, int argc, char **argv));
  814. extern int    Tcl_TimeCmd _ANSI_ARGS_((ClientData clientData,
  815.             Tcl_Interp *interp, int argc, char **argv));
  816.  
  817. #endif /* _TCLINT */
  818.